home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / _cleanup.c,v next >
Text File  |  1991-12-02  |  2KB  |  120 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.20.18.12.15;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.10.16.23.35;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.12.02.19.54.57;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Change file streams so that fdopen can be called more than once
  32. for a given stream id, and get separate buffers.
  33. @
  34. text
  35. @/* 
  36.  * _cleanup.c --
  37.  *
  38.  *    Source code for the "_cleanup" library procedure.
  39.  *
  40.  * Copyright 1988 Regents of the University of California
  41.  * Permission to use, copy, modify, and distribute this
  42.  * software and its documentation for any purpose and without
  43.  * fee is hereby granted, provided that the above copyright
  44.  * notice appear in all copies.  The University of California
  45.  * makes no representations about the suitability of this
  46.  * software for any purpose.  It is provided "as is" without
  47.  * express or implied warranty.
  48.  */
  49.  
  50. #ifndef lint
  51. static char rcsid[] = "$Header: _cleanup.c,v 1.1 88/06/10 16:23:35 ouster Exp $ SPRITE (Berkeley)";
  52. #endif not lint
  53.  
  54. #include "stdio.h"
  55. #include "fileInt.h"
  56.  
  57. /*
  58.  *----------------------------------------------------------------------
  59.  *
  60.  * _cleanup --
  61.  *
  62.  *    This procedure is invoked once just before the process exits.
  63.  *    It flushes all of the open streams.
  64.  *
  65.  * Results:
  66.  *    None.
  67.  *
  68.  * Side effects:
  69.  *    Streams get flushed.
  70.  *
  71.  *----------------------------------------------------------------------
  72.  */
  73.  
  74. void
  75. _cleanup()
  76. {
  77.     register FILE *stream;
  78.  
  79.     for (stream = stdioFileStreams; stream != NULL; stream = stream->nextPtr) {
  80.     if (!(stream->flags & STDIO_WRITE)) {
  81.         continue;
  82.     }
  83.     fflush(stream);
  84.     }
  85. }
  86. @
  87.  
  88.  
  89. 1.2.1.1
  90. log
  91. @Initial branch for Sprite server.
  92. @
  93. text
  94. @d17 1
  95. a17 1
  96. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/_cleanup.c,v 1.2 88/07/20 18:12:15 ouster Exp $ SPRITE (Berkeley)";
  97. @
  98.  
  99.  
  100. 1.1
  101. log
  102. @Initial revision
  103. @
  104. text
  105. @d17 1
  106. a17 1
  107. static char rcsid[] = "$Header: atoi.c,v 1.1 88/04/28 17:20:23 ouster Exp $ SPRITE (Berkeley)";
  108. d43 1
  109. a43 2
  110.     FILE *stream;
  111.     int i;
  112. d45 3
  113. a47 4
  114.     for (i = 0; i < stdioNumFileStreams; i++) {
  115.     stream = stdioFileStreams[i];
  116.     if (stream != NULL) {
  117.         fflush(stream);
  118. d49 1
  119. @
  120.